Bugfix.
authorElliot Lee <sopwith@src.gnome.org>
Thu, 3 Aug 2000 20:33:38 +0000 (20:33 +0000)
committerElliot Lee <sopwith@src.gnome.org>
Thu, 3 Aug 2000 20:33:38 +0000 (20:33 +0000)
Bugfix.

gdk/gdkpango.c

index 029ba9a537249597c6d98be1d42f406f45532c98..97bec9a165c297f45d2abff405fd79fad76224f5 100644 (file)
@@ -197,7 +197,7 @@ gdk_draw_layout_line (GdkDrawable      *drawable,
        }
 
       if (shape_set)
-       continue;
+       goto next_run;
 
       if (fg_set)
        fg_gc = gdk_pango_get_gc (context, &fg_color, gc);
@@ -230,7 +230,8 @@ gdk_draw_layout_line (GdkDrawable      *drawable,
 
       if (fg_set)
        gdk_pango_free_gc (context, fg_gc);
-      
+
+    next_run:
       x_off += logical_rect.width;
     }
 }